HTMLify
index.html
Views: 435 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.8.11/tailwind.min.css" integrity="sha512-KO1h5ynYuqsFuEicc7DmOQc+S9m2xiCKYlC3zcZCSEw0RGDsxcMnppRaMZnb0DdzTDPaW22ID/gAGCZ9i+RT/w==" crossorigin="anonymous" /> <link rel="stylesheet" href="style.css" /> <title>Password Strength Background</title> </head> <body> <div class="background" id="background"></div> <div class="bg-white rounded p-10 text-center shadow-md"> <h1 class="text-3xl">Image Password Strength</h1> <p class="text-sm pt-1 text-gray-700"> Change the password to see the effect </p> <div class="my-4 text-left"> <label for="email" class="text-gray-900">Email:</label> <input type="text" name="email" id="email" class="border block w-full p-2 mt-2 rounded" placeholder="Enter Email" /> </div> <div class="my-4 text-left"> <label for="password" class="text-gray-900">Password:</label> <input type="password" name="password" id="password" class="border block w-full p-2 mt-2 rounded" placeholder="Enter Password" /> </div> <button type="submit" class="bg-black text-white py-2 mt-4 inline-block w-full rounded" > Submit </button> </div> <script src="script.js"></script> </body> </html> |